docmatic 0.1.2

Test Rust examples in your documentation.
Documentation
  • Coverage
  • 100%
    7 out of 7 items documented2 out of 7 items with examples
  • Size
  • Source code size: 27.01 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.68 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 20s Average build duration of successful builds.
  • all releases: 20s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • assert-rs/docmatic
    14 2 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • epage

docmatic

Be dogmatic about working documentation.

Build Status Build status Documentation License Crates.io

Usage

First, add this to your Cargo.toml:

[dev-dependencies]
docmatic = "0.1"

Next, in your test file:

extern crate docmatic;

fn test_readme() {
    docmatic::assert_file("README.md");
}

For more information on using docmatic, look at the documentation

Why Docmatic?

Compared to doing nothing:

  • When you have stale documentation, it gives a sour taste to those considering your crate

Compared to #![doc(include = "../README.md")]

  • Allows your README to focus on potential contributors and your API docs on potential users
  • Doesn't require nightly

Compared to rustdoc -L target/debug/deps/ --test README.md

  • For docmatic:
    • Easier for contributors to know how to run
  • For rustdoc:
    • Simple
    • No dependencies to muck with

Compared to skeptic:

  • For docmatic:
    • Fewer dependencies for faster build
    • Doesn't require exposing those dependencies to your users via a [build-dependencies]
    • Runs in the expected working directory
  • For skeptic:
    • Skeptic templates
    • Better integration with cargo test (each block is a distinct test)

License

docmatic is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, and LICENSE-MIT for details.

Credits

We're grateful for all of the work done on skeptic, the spiritual predecessor to docmatic and the work of people iterating on a lighter weight solution.